home *** CD-ROM | disk | FTP | other *** search
/ The Atari Compendium / The Atari Compendium (Toad Computers) (1994).iso / files / prgtools / langs / sozosun.zoo / src / ld / Makefile < prev   
Encoding:
Makefile  |  1991-02-09  |  160 b   |  15 lines

  1. OBJS = ld.o p1.o p2.o
  2.  
  3. CFLAGS = -O -DBSD $(DEBUG)
  4.  
  5. sld : $(OBJS)
  6.     cc $(DEBUG) -o ../../bin/sld.ttp $(OBJS)
  7.  
  8. $(OBJS) : ld.h
  9.  
  10. clean:
  11.     rm *.o
  12.  
  13. clobber:
  14.     rm *.o ld
  15.